home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / satellit / vstsrc / run.bat < prev    next >
DOS Batch File  |  1995-02-02  |  2KB  |  43 lines

  1. @echo off
  2. REM     Batch file to create versatrack from source in current directory
  3. REM     *** MODIFY ENVIRONMENT VARIABLES BELOW, AS NECESSARY.
  4.  
  5. REM     set INCLUDE to point to WIN32 SDK include directory. It is where all
  6. REM     the .h files live. Uncomment and set as appropriate
  7. REM set INCLUDE=c:\msvcnt\include;c:\msvcnt\mfc\include
  8.  
  9. REM     set LIB to point o WIN32 SDK directory where all the C libraries live.
  10. REM     Uncomment and set as appropriate.
  11. REM set LIB=c:\msvcnt\lib;c:\msvcnt\mfc\lib
  12.  
  13. REM     LEAVE NEXT LINE ALONE! It is used by WIN32 SDK's nmake utility.
  14. set MAKEFLAGS=L E
  15.  
  16. REM     PATH must include the directory where the compiler/linker executables
  17. REM     are located. Uncomment and set as appropriate
  18. REM set PATH=%PATH%;c:\msvcnt\bin
  19.  
  20. REM     set TEMP to point to a directory in which temp files can be placed.
  21. REM     Uncomment and set as appropriate. The directory must already exist.
  22. REM set TEMP=C:\temp
  23.  
  24. REM     Set DEBUG to 1 if a debug version of versatrack is desired, else set
  25. REM     to zero for a release version.
  26. set DEBUG=0
  27.  
  28. REM     Set INSTALLDIR to point to the directory to install the software
  29. REM     after it is built. This directory will be created if it does not
  30. REM     exist.
  31. set INSTALLDIR=c:\vst
  32.  
  33.  
  34. REM     Now create the install directory. It is where sattrack executable and
  35. REM     all related files will be installed.
  36. mkdir %INSTALLDIR% 2>NUL
  37.  
  38.  
  39. REM     Now build and install
  40. nmake "DEBUG=%DEBUG%" "INSTALLDIR=%INSTALLDIR%" install
  41.  
  42.  
  43.